Perl One-Liners by Peteris Krumins
Author:Peteris Krumins
Language: eng
Format: epub, mobi
Tags: COMPUTERS / Programming Languages / Perl
ISBN: 9781593275693
Publisher: No Starch Press
Published: 2013-11-22T16:00:00+00:00
3883737189170238912377
However, this line wouldn’t be printed because it also contains some characters:
8388338 foo bar random data 999
You can also invert the ^\d$ regular expression and use \D:
perl -lne 'print unless /\D/'
This one-liner is great for developing your logical reasoning because it uses logical negation twice. Here, the line prints only if it does not contain a non-numeric character. In other words, it prints only if all the characters are numeric. (Notice that I used the -l command-line argument for this one-liner because of the newline character at the end of the line. If I didn’t use -l, the line would contain the newline character—a non-numeric character—and it wouldn’t be printed.)
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Deep Learning with Python by François Chollet(12518)
Hello! Python by Anthony Briggs(9865)
OCA Java SE 8 Programmer I Certification Guide by Mala Gupta(9755)
The Mikado Method by Ola Ellnestam Daniel Brolund(9745)
Dependency Injection in .NET by Mark Seemann(9291)
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8256)
Test-Driven iOS Development with Swift 4 by Dominik Hauser(7739)
Grails in Action by Glen Smith Peter Ledbrook(7665)
The Well-Grounded Java Developer by Benjamin J. Evans Martijn Verburg(7514)
Becoming a Dynamics 365 Finance and Supply Chain Solution Architect by Brent Dawson(6739)
Microservices with Go by Alexander Shuiskov(6503)
Practical Design Patterns for Java Developers by Miroslav Wengner(6403)
Test Automation Engineering Handbook by Manikandan Sambamurthy(6380)
Secrets of the JavaScript Ninja by John Resig Bear Bibeault(6376)
Angular Projects - Third Edition by Aristeidis Bampakos(5758)
The Art of Crafting User Stories by The Art of Crafting User Stories(5291)
NetSuite for Consultants - Second Edition by Peter Ries(5234)
Demystifying Cryptography with OpenSSL 3.0 by Alexei Khlebnikov(5052)
Kotlin in Action by Dmitry Jemerov(5017)
